home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmigaPlus / Tools / Development / renderlib40 / src / lib_debug.h next >
Encoding:
C/C++ Source or Header  |  2003-01-13  |  246 b   |  20 lines

  1.  
  2. #ifndef _LIBRARY_DEBUG_H
  3. #define _LIBRARY_DEBUG_H
  4.  
  5. #ifdef DEBUG
  6. #define DB(x)    x
  7. #else
  8. #define DB(x)
  9. #endif
  10.  
  11. #ifdef __MORPHOS__
  12.     void dprintf(char *, ... );
  13.     #undef kprintf
  14.     #define kprintf dprintf
  15. #else
  16.     VOID kprintf(STRPTR,...);
  17. #endif
  18.  
  19. #endif
  20.